import { SimpleSelectProps } from "./simple-select"; export interface StyledSelectProps extends Pick { hasTextCursor?: boolean; isOpen: boolean; } declare const StyledSelect: import("styled-components").StyledComponent<"div", any, { theme: object; } & StyledSelectProps, "theme">; export default StyledSelect;