import { type ButtonControlProps } from '../../shared/contracts'; type DeveloperDesignerOccupation = 'developer' | 'designer'; type DeveloperDesignerToggleProps = Omit & { occupation?: DeveloperDesignerOccupation; defaultOccupation?: DeveloperDesignerOccupation; onOccupationChange?: (occupation: DeveloperDesignerOccupation) => void; developerLabel?: string; designerLabel?: string; }; declare const DeveloperDesignerToggle: ({ occupation: controlledOccupation, defaultOccupation, onOccupationChange, developerLabel, designerLabel, className, disabled, id, onClick, ref, style, title, type, ...buttonProps }: DeveloperDesignerToggleProps) => import("react/jsx-runtime").JSX.Element; export { DeveloperDesignerToggle }; export type { DeveloperDesignerOccupation, DeveloperDesignerToggleProps };