import { default as React } from 'react'; import { ButtonProps } from '../Button'; export type ToggleButtonProps = Omit & { selected?: boolean; }; export declare const ToggleButton: React.ForwardRefExoticComponent & { selected?: boolean; } & React.RefAttributes<((props: { as?: T | undefined; size?: "xs" | "sm" | "md" | "lg" | "xl"; variant?: "primary" | "secondary" | "tertiary"; scheme?: "default" | "negative" | "positive" | "warning"; minWidth?: React.CSSProperties["minWidth"]; maxWidth?: React.CSSProperties["maxWidth"]; busy?: boolean; title?: React.ReactNode; icon?: React.ReactElement; iconPosition?: "start" | "end"; } & Omit>, "title" | "as" | "size" | "icon" | "scheme" | "minWidth" | "maxWidth" | "variant" | "busy" | "iconPosition"> & React.RefAttributes) => React.ReactElement | null)>>;