import { ButtonProps } from "@mantine/core"; import { FormControlProps } from "@mongez/react-form"; import React from "react"; type FileInputProps = FormControlProps & { buttonLabel?: React.ReactNode; buttonProps?: ButtonProps; accept?: string; description?: React.ReactNode; hint?: React.ReactNode; }; export declare function FileInput({ buttonLabel, buttonProps, description, hint, accept, label, placeholder, required, ...props }: FileInputProps): any; export declare namespace FileInput { var defaultProps: { rules: any[]; }; } export {}; //# sourceMappingURL=FileInput.d.ts.map