declare type DropdownMatrixProps = {
    disabled: boolean;
    matrix: any;
    onOptionsUpdate?: Function;
    onSelectionUpdate: Function;
    selections: any[];
};
declare const DropdownMatrix: ({ matrix, selections, onSelectionUpdate, onOptionsUpdate, disabled, ...rest }: DropdownMatrixProps) => JSX.Element;
export default DropdownMatrix;
