import * as React from 'react'; /** * Action button properties interface */ export interface ISelectAllButtonProps { /** * Customize class name */ className?: string; /** * On-click event handler */ onChange?: (event?: React.ChangeEvent) => void; /** * Whether the checkbox is checked */ checked: boolean; } /** * Action button component * * @param props Component properties */ export declare const SelectAllButton: React.FunctionComponent;