UNPKG

polaris-glints

Version:

Glints forked polaris react

17 lines (16 loc) 719 B
import React from 'react'; import { IndexTableHeadingCheckbox } from '../IndexTable'; export interface CheckboxProps extends Pick<IndexTableHeadingCheckbox, Exclude<keyof IndexTableHeadingCheckbox, 'checked'>> { checked?: boolean | 'indeterminate'; } export interface CheckableButtonProps { accessibilityLabel?: string; label?: string; selected?: boolean | 'indeterminate'; disabled?: boolean; onToggleAll?(): void; ariaLive?: 'off' | 'polite'; checkbox?: (props: CheckboxProps) => React.ReactNode; } export declare const CheckableButton: React.ForwardRefExoticComponent<CheckableButtonProps & React.RefAttributes<unknown>>; //# sourceMappingURL=CheckableButton.d.ts.map