declare type CheckboxMatrixProps = {
    disabled: boolean;
    matrix: any;
    onSelectionUpdate?: Function;
    selections: any;
};
declare const CheckboxMatrix: ({ matrix, selections, onSelectionUpdate, disabled, ...rest }: CheckboxMatrixProps) => JSX.Element;
export default CheckboxMatrix;
