/**
 * Copyright 2020, Verizon Media
 * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms.
 */
import React from 'react';
export declare const DnCheckbox: React.FC<DnCheckboxProps>;
export interface DnCheckboxProps {
    id: string;
    name?: string;
    defaultChecked?: boolean;
    checkboxLabel?: string;
    checkboxValue?: string;
    isPartial?: boolean;
    isDisabled?: boolean;
    onChange?: React.ChangeEventHandler<HTMLInputElement>;
    className?: string;
}
//# sourceMappingURL=DnCheckbox.d.ts.map