import * as React from "react";
export declare type AnnounceKitProps = {
    children?: any;
    className?: string;
    widget: string;
    lang?: string;
    name?: string;
    trackLocationChanges?: boolean;
    onWidgetOpen?: Function;
    onWidgetClose?: Function;
    onWidgetResize?: Function;
    onWidgetUnread?: Function;
    labels?: string[];
    user_token?: string;
    widgetStyle?: React.CSSProperties;
    boosters?: boolean;
    floatWidget?: boolean;
    embedWidget?: boolean;
    user?: {
        id: string;
        [key: string]: any;
    };
    data?: {
        [key: string]: any;
    };
    customConfig?: any;
};
declare const _default: React.ForwardRefExoticComponent<AnnounceKitProps & React.RefAttributes<unknown>>;
export default _default;
