import type { CSSProperties } from 'react';
export interface PoweredByProps {
    /** Texto antes del nombre (default: "Powered by") */
    label?: string;
    /** Nombre que se muestra (default: "Plazbot") */
    brandName?: string;
    /** URL del link (default: "https://plazbot.com"). Pasar null para quitar link */
    href?: string | null;
    style?: CSSProperties;
}
export declare function PoweredBy({ label, brandName, href, style }: PoweredByProps): import("react/jsx-runtime").JSX.Element;
