import React from 'react'; export interface IBulkContentProps { isAllSelected: boolean; bulk: any[]; emptyBulk: () => void; toggleBulk: (target: any, toAdd: boolean) => void; toggleAll: (targets: any[], containerId: string) => void; } export declare type BulkProps = { content: (props: IBulkContentProps) => React.ReactNode; refetch?: () => void; }; declare type State = { bulk: string[]; isAllSelected: boolean; }; export default abstract class Bulk extends React.Component { constructor(props: any); toggleBulk: (target: any, toAdd: any) => void; toggleAll: (targets: any, containerId: any) => void; emptyBulk: () => void; render(): React.ReactNode; } export {}; //# sourceMappingURL=index.d.ts.map