///
export interface IUser {
id: string;
email: string;
firstName?: string;
lastName?: string;
}
export interface IOption {
value: string;
label: string;
}
export declare type Prefer
= P & Omit;
export declare type ElementPropsWithoutRef = Pick, keyof React.ComponentPropsWithoutRef>;
export declare type OverwritableType = Prefer>;
export declare type SectionsConfig = {
[key in 'channels' | 'dm' | 'contacts']: boolean;
};