import { ProFieldFCRenderProps } from '@ant-design/pro-components';
import { ProFormFieldItemProps } from '@ant-design/pro-form/es/typing';
import { FC } from 'react';
interface ISecretKeyProps {
    keyLength?: number;
    onChange?: () => void;
    hide?: boolean;
}
declare const SecretKey: FC<ProFieldFCRenderProps & ISecretKeyProps>;
declare const FormField: FC<ProFormFieldItemProps<{
    keyLength?: number;
    hide?: boolean;
}, any>>;
export { SecretKey };
export default FormField;
