import { CalloutBadgeInfo as CalloutBadgeInfo_internal } from "./CalloutBadgeInfo";
import { ContentChildrenManager } from "igniteui-react-core";
/**
 * Provides info about callout badge
*/
export declare class IgrCalloutBadgeInfo {
    protected createImplementation(): CalloutBadgeInfo_internal;
    protected _implementation: any;
    protected mounted: boolean;
    get nativeElement(): HTMLElement;
    /**
     * @hidden
     */
    get i(): CalloutBadgeInfo_internal;
    protected onImplementationCreated(): void;
    protected _contentChildrenManager: ContentChildrenManager;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets or sets badge thickness in the callout.
    */
    get badgeThickness(): number;
    set badgeThickness(v: number);
    /**
     * Gets or sets badge width in the callout.
    */
    get badgeWidth(): number;
    set badgeWidth(v: number);
    /**
     * Gets or sets badge height in the callout.
    */
    get badgeHeight(): number;
    set badgeHeight(v: number);
    /**
     * Gets or sets whether the badge is visible in the callout.
    */
    get badgeVisible(): boolean;
    set badgeVisible(v: boolean);
    /**
     * Gets or sets the gap between badge and text in the callout.
    */
    get badgeGap(): number;
    set badgeGap(v: number);
    /**
     * Gets or sets the corner badge in the callout.
    */
    get badgeCorner(): number;
    set badgeCorner(v: number);
    /**
     * Gets or sets the image path for badge displayed in the callout.
    */
    get badgeImage(): string;
    set badgeImage(v: string);
    findByName(name: string): any;
}
