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