import { EventEmitter } from '../../stencil-public-runtime';
import { EComponentSize, IToggleButton } from '../../types';
export interface IToggleButtonGroup<T extends string | number | symbol = string | number | symbol> {
    /** (optional) List of toggle buttons */
    buttons: IToggleButton<T>[];
    /** (optional) If `true` all toggle buttons will have a radio button */
    withRadio?: boolean;
    /** (optional) Sets styling to be disabled and disables click events for all buttons */
    disabled?: boolean;
    /** (optional) A record with the button's label/value and with if the selected value */
    selectedButtons?: Record<T, boolean>;
    /** (optional) A record with the button's label/value and the if the respective button is disabled */
    disabledButtons?: Record<T, boolean>;
    /** (optional) A record with the button's label/value and the if the respective button is a radio button */
    radioButtons?: Record<T, boolean>;
    /** (optional) Sets the size for all toggle buttons */
    size?: EComponentSize;
}
export interface IToggleButtonGroupEvents {
    /** When the toggle button selection changes, emit the requested tab's key */
    checkedChange: EventEmitter<string>;
}
