import type React from 'react';
import type { Theme } from '@mui/material/styles';
import { SxProps } from '@mui/material';
export interface FileUploadHeaderProps {
    button?: React.ReactElement;
    buttonText?: string;
    labelText?: string;
    onRemove?: React.MouseEventHandler<HTMLButtonElement>;
    showButton?: boolean;
    sx?: SxProps<Theme>;
}
declare const FileUploadHeader: React.FC<FileUploadHeaderProps>;
export default FileUploadHeader;
//# sourceMappingURL=file-upload-header.d.ts.map