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>;
