import { type ElementType, type ReactNode, type Ref } from 'react'; import { type ButtonBaseProps } from '../ButtonBase/ButtonBase'; type Props = ButtonBaseProps & { alternativeChildren?: ReactNode; ref?: Ref; }; export declare const DoubleStateButton: ({ children, alternativeChildren, className, ref, ...rest }: Props) => import("react/jsx-runtime").JSX.Element; export {};