export interface RadioButtonProps { children?: any; checked?: boolean; onCheck: () => void; className?: string; disabled?: boolean; [props: string]: any; } export declare const RadioButton: ({ children, checked, onCheck, className, disabled, ...props }: RadioButtonProps) => import("@emotion/react/jsx-runtime").JSX.Element;