import type { SVGProps } from 'react'; interface IconProps { title?: string; titleId?: string; } /** * c15t icon only (without text). * Use this for compact displays like the floating trigger. */ export declare const C15TIconOnly: ({ title, titleId, ...props }: SVGProps & IconProps) => import("react/jsx-runtime").JSX.Element; /** * c15t full logo with text. * Use this for branding displays. */ export declare const C15TIcon: ({ title, titleId, ...props }: SVGProps & IconProps) => import("react/jsx-runtime").JSX.Element; /** * INTH logo for partner branding displays. */ export declare const InthLogo: (props: SVGProps & IconProps) => import("react/jsx-runtime").JSX.Element; /** * INTH icon-only mark for compact placements like floating triggers. */ export declare const InthIconOnly: (props: SVGProps & IconProps) => import("react/jsx-runtime").JSX.Element; export declare const ConsentLogo: ({ title, titleId, ...props }: SVGProps & IconProps) => import("react/jsx-runtime").JSX.Element; /** * Consent icon only (without text). * Use this for compact displays like the preference center footer. */ export declare const ConsentIconOnly: ({ title, titleId, ...props }: SVGProps & IconProps) => import("react/jsx-runtime").JSX.Element; /** * Fingerprint icon for privacy/consent contexts. * A generic icon representing user identity and privacy. */ export declare const FingerprintIcon: ({ title, titleId, ...props }: SVGProps & IconProps) => import("react/jsx-runtime").JSX.Element; /** * Settings/gear icon for preference contexts. * A generic icon representing configuration and settings. */ export declare const SettingsIcon: ({ title, titleId, ...props }: SVGProps & IconProps) => import("react/jsx-runtime").JSX.Element; export {};