import { Colors, Variants } from '../../styles'; interface Props { type: 'button' | 'circle-image' | 'square-image'; src?: string; hasImage?: boolean; variant: Variants; color: Colors; } declare const StyledLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, Props, never>; declare const StyledUploadButton: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {}, never>; declare const Image: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, { type: 'button' | 'circle-image' | 'square-image'; }, never>; export { StyledLabel, StyledUploadButton, Image };