import { CalloutBadgeInfo as CalloutBadgeInfo_internal } from "./CalloutBadgeInfo";
/**
 * Provides info about callout badge
*/
export declare class IgxCalloutBadgeInfo {
    protected createImplementation(): CalloutBadgeInfo_internal;
    protected _implementation: any;
    /**
     * @hidden
     */
    get i(): CalloutBadgeInfo_internal;
    private onImplementationCreated;
    constructor();
    protected _provideImplementation(i: any): void;
    /**
     * Gets or sets badge thickness in the callout.
    */
    get badgeThickness(): number;
    set badgeThickness(v: number);
    static ngAcceptInputType_badgeThickness: number | string;
    /**
     * Gets or sets badge width in the callout.
    */
    get badgeWidth(): number;
    set badgeWidth(v: number);
    static ngAcceptInputType_badgeWidth: number | string;
    /**
     * Gets or sets badge height in the callout.
    */
    get badgeHeight(): number;
    set badgeHeight(v: number);
    static ngAcceptInputType_badgeHeight: number | string;
    /**
     * Gets or sets whether the badge is visible in the callout.
    */
    get badgeVisible(): boolean;
    set badgeVisible(v: boolean);
    static ngAcceptInputType_badgeVisible: boolean | string;
    /**
     * Gets or sets the gap between badge and text in the callout.
    */
    get badgeGap(): number;
    set badgeGap(v: number);
    static ngAcceptInputType_badgeGap: number | string;
    /**
     * Gets or sets the corner badge in the callout.
    */
    get badgeCorner(): number;
    set badgeCorner(v: number);
    static ngAcceptInputType_badgeCorner: number | string;
    /**
     * Gets or sets the image path for badge displayed in the callout.
    */
    get badgeImage(): string;
    set badgeImage(v: string);
    findByName(name: string): any;
}
