import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs } from './common' export interface TermsAndConditionsProps extends HTMLAttrs { children?: ReactNode tokens?: Record variant?: Record } export declare const TermsAndConditions: ComponentType