import { Control } from 'react-hook-form';
declare type Props = {
    setVisible: any;
    control: Control;
};
declare const Header: ({ setVisible, control }: Props) => JSX.Element;
export default Header;
