import { JengaFieldWrapperProps } from './types'; declare type WrapperProps = { [K in keyof Pick]: JengaFieldWrapperProps[K]; }; export declare function extractFieldWrapperProps = WrapperProps, RestProps extends Omit = Omit>(props: Props): Readonly<{ fieldWrapperProps: ActualWrapperProps; rest: RestProps; }>; export {};