export interface MultiSelectProps { /** The name of the input */ name: string; /** The array of options that are initially selected */ initialSelected?: Array<{ value: string; label: string; }>; /** The array of options passed in */ options: Array<{ value: string; label: string; }>; /** onChange handler */ onChange: (name: string, selectedOptions: Array<{ value: string; label: string; }>) => void; /** Placeholder for input */ placeholder?: string; /** Placeholder for input when already selected an option */ placeholderSecondary?: string; } declare const _default; export default _default;