export declare type PepSearchType = 'regular' | 'auto-complete'; export declare type PepSearchTriggerType = 'keydown' | 'click'; export declare type PepSearchStateType = 'open' | 'close'; export declare type PepSearchShrinkType = 'small-screen' | 'always' | 'never'; export interface IPepSearchClickEvent { value: string; } export interface IPepSearchAutocompleteChangeEvent { value: string; top: number; } export interface IPepSearchStateChangeEvent { state: PepSearchStateType; }