import React from 'react'; export interface TicksProps { /** Render a double check (delivered / read) instead of a single check (sent). */ double?: boolean; color: string; /** Visual height of a single check; defaults to 9. */ size?: number; } /** * Telegram-style delivery ticks: one check = sent, double check = delivered/read. * Color the read state with the accent (or a brighter shade on colored bubbles). */ export declare const Ticks: ({ double, color, size }: TicksProps) => React.JSX.Element; export interface PendingClockProps { color: string; size?: number; } /** * A minimal clock-outline icon for the "pending" (sending) state, replacing the * old "🕓" emoji. The hands rotate continuously while the message is sending, * mirroring Telegram's spinning clock. Respects the system reduce-motion * setting (the hands simply hold still). */ export declare const PendingClock: ({ color, size }: PendingClockProps) => React.JSX.Element; //# sourceMappingURL=Ticks.d.ts.map