import { default as React } from 'react';
export interface SelectableProps extends React.PropsWithChildren {
    /** The ids of the selected items. */
    selection?: number[];
    /** The change event that is triggered, when the selection changes. */
    onSelectionChange?: (selectedIdxs: number[]) => void;
}
export declare const Selectable: React.FC<SelectableProps>;
