import { VariantProps } from 'class-variance-authority'; import { ClassProp } from 'class-variance-authority/types'; declare const byocBadgeVariants: (props?: ({ size?: "default" | "md" | null | undefined; } & ClassProp) | undefined) => string; interface ByocBadgeProps extends VariantProps { className?: string; delay?: number; showInfoIcon?: boolean; } export declare function ByocBadge({ className, size, showInfoIcon, delay, }: ByocBadgeProps): import("react").JSX.Element; export {}; //# sourceMappingURL=byoc-badge.d.ts.map