UNPKG

@steambrew/client

Version:
18 lines (17 loc) 626 B
import { FC, ReactNode } from 'react'; import { DialogCommonProps } from './Dialog'; import { FooterLegendProps } from './FooterLegend'; export interface DialogCheckboxProps extends Omit<DialogCommonProps, 'onChange'>, FooterLegendProps { onChange?(checked: boolean): void; label?: ReactNode; description?: ReactNode; disabled?: boolean; tooltip?: string; color?: string; highlightColor?: string; bottomSeparator?: 'standard' | 'thick' | 'none'; controlled?: boolean; checked?: boolean; } /** @component React Components */ export declare const DialogCheckbox: FC<DialogCheckboxProps>;