import * as React from 'react';
import { AdaptableSystemIconName } from '../../types';
export type ToggleProps = {
    onPressedChange: (pressed: boolean) => void;
    pressed?: boolean;
    icon?: AdaptableSystemIconName;
    /** Render as an individual button (not inside a {@link ToggleGroup}). */
    standalone?: boolean;
};
export declare const Toggle: React.FunctionComponent<React.PropsWithChildren<ToggleProps>>;
