import { ISelectProps } from 'native-base'; import { FC, ReactNode } from 'react'; import type { BaseProps } from '@native-base/formik-ui/lib/typescript/components/props'; export declare function omitUndefined(obj: any): Partial; export declare function extractInObject(parent: any, values: Array): Partial[]; export declare const getLayoutProps: (props: any) => Partial[]; declare type SelectProps = BaseProps & { selectProps?: ISelectProps; children: ReactNode; }; export declare const SelectControl: FC; export {};