export interface INotionLikeSelectOption { label: string; key: string; value: Record; } export interface INotionLikeSelectProps { options: INotionLikeSelectOption[]; value: INotionLikeSelectOption; onSelect?: (value: INotionLikeSelectOption) => void; tooltip?: string; } declare function NotionLikeSelect(props: INotionLikeSelectProps): React.ReactElement; declare namespace NotionLikeSelect { var displayName: string; } export { NotionLikeSelect };