import { ButtonProps, IconProps } from '../../index'; interface FileSelectIconProps { handleFileSelect: () => void; iconContainerProps: object; buttonProps: ButtonProps; iconProps: IconProps; } declare const FileSelectIcon: (props: FileSelectIconProps) => import("react/jsx-runtime").JSX.Element; export default FileSelectIcon;