import React from "react"; import type { Section } from "./models/Section"; type Props = { value: Section | null; onChange: (section: Section | null) => void; topSectionsCount?: number; disabled?: boolean; label?: string; }; export declare const SectionSelector: ({ value, onChange, topSectionsCount, disabled, label, }: Props) => React.JSX.Element; export {};