import { ButtonProps } from '@chakra-ui/react'; import { default as React } from 'react'; interface ButtonOption { text?: string; onClick?: () => void; } interface ButtonWithOptionsProps extends ButtonProps { onClick?: () => void; isDisabled?: boolean; buttonText?: string; options?: ButtonOption[]; } export declare const ButtonWithOptions: React.FC; export {};