/// export interface SelectTextInputInterface { title: string; subOptions?: { value: string; label: string; }[]; handleClick?: () => void; variant?: "text" | "outlined" | "contained" | undefined; height?: number | string; textColor?: string; } declare const IconButtonWithText: ({ title, subOptions, handleClick, variant, height, textColor }: SelectTextInputInterface) => JSX.Element; export default IconButtonWithText;