• Returns {
        choices: any;
        clear: (() => void);
        close: (() => void);
        hasQuery: boolean;
        isVisible: boolean;
        onChangeQuery: ((query: any) => void);
        onSubmit: (() => void);
        query: string;
        selectNext: (() => void);
        selectPrevious: (() => void);
        selectedValue: any;
        setSelectedAndSubmit: ((choice: any) => void);
        toggle: (() => void);
    }

    • choices: any
    • clear: (() => void)
        • (): void
        • Returns void

    • close: (() => void)
        • (): void
        • Returns void

    • hasQuery: boolean
    • isVisible: boolean
    • onChangeQuery: ((query: any) => void)
        • (query: any): void
        • Parameters

          • query: any

          Returns void

    • onSubmit: (() => void)
        • (): void
        • Returns void

    • query: string
    • selectNext: (() => void)
        • (): void
        • Returns void

    • selectPrevious: (() => void)
        • (): void
        • Returns void

    • selectedValue: any
    • setSelectedAndSubmit: ((choice: any) => void)
        • (choice: any): void
        • Parameters

          • choice: any

          Returns void

    • toggle: (() => void)
        • (): void
        • Returns void

Generated using TypeDoc