import React from "react"; import type { ButtonProps } from "../Button"; interface InputFileButtonProps extends Omit { } export declare function InputFileButton({ label, size, fullWidth, ...buttonProps }: InputFileButtonProps): React.JSX.Element; export {};