dk-plus
Version:
10 lines (9 loc) • 363 B
TypeScript
import type { DkRadioType } from '../../dkradio/src/props';
import { type ComputedRef, type CSSProperties } from 'vue';
import type { ClassListName } from '../../_interface';
interface RadioReturnsType {
classList: ComputedRef<ClassListName>;
styleList: CSSProperties;
}
export declare const getRadio: (props: DkRadioType) => RadioReturnsType;
export {};