import { RenderFileProps } from '../../../../../../../ui/index.js';
export type ButtonUploadImageMobileProps = {
    mobile?: {
        id: string;
        name: string;
        multiple: boolean;
        isAccumalativeFile: boolean;
        nameFileMobile: string;
        mobileFilesAlredyExist: boolean;
    };
    isMobile?: boolean;
};
export declare function ButtonUploadImageMobile(props: RenderFileProps & ButtonUploadImageMobileProps): import("react/jsx-runtime").JSX.Element;
