///
import { SelectProps } from 'nav-frontend-skjema';
import { TestProps, TypedFormInputValidationProps, UseFastFieldProps } from '../../types';
interface OwnProps extends Omit {
name: FieldName;
}
export declare type FormikSelectProps = OwnProps & TypedFormInputValidationProps & UseFastFieldProps & TestProps;
declare function FormikSelect({ name, children, validate, feil, useFastField, ...restProps }: FormikSelectProps): JSX.Element;
export default FormikSelect;