import { ForwardedRef } from 'react';
import { LabelProperties } from '../label';
export type RadioPanelProperties = LabelProperties;
/**
 * Container used with a radio component to add a border and background color.
 * @docs {@link https://design.visa.com/react/components/radio | See Docs}
 */
declare const _default: <HTMLElementType = HTMLLabelElement>(props: {
    children?: import("react").ReactNode | import("react").ReactNode[];
    ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & LabelProperties) => import("react").ReactElement;
export default _default;
