export interface RelationOption { id: string; title: string; subtitle?: string; meta?: string; image?: string; kind?: string; } interface RelationPickerProps { options?: RelationOption[]; value?: string | string[]; multiple?: boolean; placeholder?: string; loading?: boolean; disabled?: boolean; emptyLabel?: string; class?: string; onsearch?: (query: string) => void; onchange?: (value: string | string[]) => void; loadOptions?: (query: string) => Promise; } declare const RelationPicker: import("svelte").Component; type RelationPicker = ReturnType; export default RelationPicker;