@bothub-chat/ui
Version:
Bothub UI Components
10 lines (9 loc) • 333 B
TypeScript
import React from 'react';
export type ThemeSchemesSectionEventHandler = () => unknown;
export interface ThemeSchemesSectionProps {
title?: string;
children?: React.ReactNode;
active?: boolean;
onClick?: ThemeSchemesSectionEventHandler;
}
export declare const ThemeSchemesSection: React.FC<ThemeSchemesSectionProps>;