/**
 * 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 DnRadio: React.FC<DnRadioProps>;
export interface DnRadioProps {
    id: string;
    name?: string;
    radioLabel?: string;
    defaultChecked?: boolean;
    radioValue?: string;
    isDisabled?: boolean;
    onChange?: React.ChangeEventHandler<HTMLInputElement>;
    className?: string;
    isToggle?: boolean;
}
//# sourceMappingURL=DnRadio.d.ts.map