/**
 * Configuration of the search input and mat-chip integration.
 */
export declare class SearchFieldConfiguration {
    /**
     * Determines whether a selected phrase can be selected
     */
    static selectable: boolean;
    /**
     * Determines whether a selected phrase can be deleted from list
     */
    static removable: boolean;
    /**
     * A list of characters that can be used as a phrase separator
     */
    static separatorKeysCodes: number[];
}
