import { SelectTextboxProps } from "./select-textbox.component"; interface StyledSelectTextProps { $hasPlaceholder: boolean; $disabled: boolean; $readOnly: boolean; $transparent: boolean; $size: NonNullable; } declare const StyledSelectText: import("styled-components").StyledComponent<"span", any, StyledSelectTextProps, never>; declare const StyledSelectTextChildrenWrapper: import("styled-components").StyledComponent<"span", any, { $isDisabled: boolean; $readOnly: boolean; }, never>; export { StyledSelectText, StyledSelectTextChildrenWrapper };