import { Colors, Sizes } from "../../styles"; interface ContainerProps { fullWidth?: boolean; } declare const StyledContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, ContainerProps, never>; interface Props { selectSize: Sizes; color: Colors; } declare const StyledSelect: import("styled-components").StyledComponent<"select", import("styled-components").DefaultTheme, Props, never>; declare const StyledOption: import("styled-components").StyledComponent<"option", import("styled-components").DefaultTheme, {}, never>; declare const StyledLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {}, never>; export { StyledContainer, StyledSelect, StyledOption, StyledLabel };