import { FlexboxProps, SpaceProps } from 'styled-system'; export declare const FlexStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, never>> & string; declare const variants: { success: { borderColor: string; color: string; fontWeight: string; }; sky: { borderColor: string; color: string; fontWeight: string; }; danger: { borderColor: string; color: string; fontWeight: string; }; }; export interface FileUploadStyledProps extends FlexboxProps, SpaceProps { inner?: boolean; showLabel?: boolean; variant: keyof typeof variants; } export declare const FileUploadStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, FileUploadStyledProps>> & string; export {};