2023-09-05 08:50:46 +00:00
|
|
|
export interface PassThroughOptions {
|
2023-09-01 08:57:43 +00:00
|
|
|
mergeSections?: boolean | undefined;
|
|
|
|
mergeProps?: boolean | undefined;
|
2023-08-10 22:44:47 +00:00
|
|
|
}
|
|
|
|
|
2023-09-05 08:50:46 +00:00
|
|
|
export declare function usePassThrough(pt1: object, pt2: object, options?: PassThroughOptions): object;
|