import { DeepPartial } from ".."; import { Component, ComponentProps } from "solid-js"; export interface RadioTheme { base: string; } export interface RadioProps extends Omit, "type"> { theme?: DeepPartial; } export declare const Radio: Component;