interface ContainerProps { /** Disable dropzone */ disabled?: boolean; /** Dropzone size */ size?: 'small' | 'medium' | 'large'; status?: 'initial' | 'error' | 'success' | 'drag'; dragScale?: number; imgSrc?: string; theme: any; } export declare const Container: import("styled-components").StyledComponent<"div", any, ContainerProps, never>; export declare const FileLabel: import("styled-components").StyledComponent<"div", any, {}, never>; interface ActionButtonProps { large?: boolean; } export declare const ActionButtons: import("styled-components").StyledComponent<"div", any, ActionButtonProps, never>; interface OuterWrapperProps { size?: 'small' | 'large' | 'medium'; } export declare const OuterWrapper: import("styled-components").StyledComponent<"div", any, OuterWrapperProps, never>; export {};