type Matcher = (key: keyof T, value: T[keyof T]) => boolean; /** * Split props so we can provide them for different components. * @internal */ export declare function useSplitProps>(props: T, matchers: Matcher[]): { matchedProps: Partial; remainingProps: Partial; }; export {};