carbon-react
Version:
A library of reusable React components for easily building user interfaces.
13 lines (12 loc) • 672 B
TypeScript
import { type StyledSelectProps } from "../select.style";
declare const StyledSelectPillContainer: import("styled-components").StyledComponent<"div", any, {
theme: object;
}, "theme">;
interface StyledSelectMultiSelectProps extends StyledSelectProps {
size: string;
}
declare const StyledSelectMultiSelect: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledSelectProps & StyledSelectMultiSelectProps, "theme">;
declare const StyledAccessibilityLabelContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
export { StyledSelectPillContainer, StyledSelectMultiSelect, StyledAccessibilityLabelContainer, };