export interface KoraDrawerState { title: string; open: boolean; } export interface KoraDrawerProps { title?: string; open?: boolean; } export declare function drawerInnerHTML(state: KoraDrawerState, body?: string): string; export declare function renderKoraDrawer(props?: KoraDrawerProps & { body?: string; }): string; //# sourceMappingURL=template.d.ts.map