UNPKG

carbon-react

Version:

A library of reusable React components for easily building user interfaces.

8 lines (7 loc) 521 B
import { SelectTextboxProps } from "./select-textbox.component"; interface StyledSelectTextProps extends Required<Pick<SelectTextboxProps, "disabled" | "readOnly" | "transparent" | "size">> { hasPlaceholder: boolean; } declare const StyledSelectText: import("styled-components").StyledComponent<"span", any, StyledSelectTextProps, never>; declare const StyledSelectTextChildrenWrapper: import("styled-components").StyledComponent<"span", any, {}, never>; export { StyledSelectText, StyledSelectTextChildrenWrapper };