import React, { ReactElement } from 'react'; import { AlertTypes } from '../../models'; interface Props { alert?: { message?: string; type: AlertTypes; }; children: React.ReactNode; blackList?: string[]; master?: string[]; selectAll?: boolean; horizontal?: boolean; onCheckAll?: (values: Array<{ name: string; value: boolean; }>) => void; } export declare const CheckboxManager: (props: Props) => ReactElement; export {}; //# sourceMappingURL=index.d.ts.map