import { HTMLAttributes } from 'react';
export interface SectionInterface {
id: string;
name: string;
color: string;
}
export declare const DefaultSection: SectionInterface;
export declare function Section({ section, sub, className, ...rest }: HTMLAttributes & {
section: Pick;
sub?: boolean;
}): JSX.Element;