export interface KoraSwitchState { checked: boolean; disabled: boolean; label: string; name: string | null; } export interface KoraSwitchProps { checked?: boolean; disabled?: boolean; label?: string; name?: string; } export declare function switchInnerHTML(state: KoraSwitchState): string; export declare function renderKoraSwitch(props?: KoraSwitchProps): string; //# sourceMappingURL=template.d.ts.map