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