import { FC } from "react"; type SelectBoxProps = { text: string; press: () => void; isListItem: boolean; isListOpen: boolean; variant?: string; }; declare const SelectBox: FC; export default SelectBox; //# sourceMappingURL=SelectBox.d.ts.map