declare interface HelpBubbleVariant { } declare type HelpBubbleVariantMap = { [key in keyof HelpBubbleVariant]: Array; }; export declare type HelpBubbleVariantProps = Partial; export declare type HelpBubbleSlotName = "positioner" | "content" | "arrow" | "arrowTip" | "body" | "title" | "description" | "closeButton"; export declare const helpBubbleVariantMap: HelpBubbleVariantMap; export declare const helpBubble: (( props?: HelpBubbleVariantProps, ) => Record) & { splitVariantProps: ( props: T, ) => [HelpBubbleVariantProps, Omit]; }