import { InputBaseProps } from './types'; type OmitDiff = { [K in Exclude]: T1[K]; } & { [K in keyof T2]: T2[K]; }; type BaseProps = Omit; /** * Splits a merged props object so InputBase receives only its own props and the * native input/control component receives the rest — prevents unknown prop warnings * on native elements and avoids spread collisions between the two prop surfaces. */ export declare function selectInputBaseProps(props: T): { inputBaseProps: BaseProps; others: OmitDiff; }; export {}; //# sourceMappingURL=utils.d.ts.map