import { PropsWithChildren, SyntheticEvent } from 'react'; declare type Props = PropsWithChildren<{ onClick: (e: SyntheticEvent) => void; active: boolean; label: string; }>; export declare const ControlButton: ({ onClick, children, active, label }: Props) => JSX.Element; export {};