export declare const getSpacing: (spacing: "compact" | "condensed" | "normal") => { verticalSpacing: 16 | 4 | 8; horizontalSpacing: 16 | 8; }; declare const titleVariantMap: { readonly compact: "p-base"; readonly condensed: "title-xs"; readonly normal: "title-sm"; }; export declare const getTitleSize: (spacing: keyof typeof titleVariantMap) => "title-sm" | "title-xs" | "p-base"; export declare const getRotationSize: (spacing: "compact" | "condensed" | "normal") => 16 | 24; export declare const renderButton: (buttonProps: { buttonPlacement: "left" | "right"; buttonType: "FillButton" | "StrokeButton" | "TextButton"; ctaCallback: () => void; ctaText: string; href?: string | undefined; }) => import("react/jsx-runtime").JSX.Element | null; export {};