import React from 'react';
interface RadioProps {
    label: string;
    color?: string;
    accentColor?: string;
    name: string;
}
export declare function StkRadio({ label, color, accentColor, name }: RadioProps): React.JSX.Element;
export {};
