import { type 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/components/radio/?code_library=react | See Docs}
 */
declare const RadioPanel: {
    ({ className, ...remainingProps }: RadioPanelProperties): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default RadioPanel;
