import React, { ReactNode } from 'react'; export declare type TheVoiceProps = Readonly<{ children: ReactNode; id?: string; className?: string; isInverted?: boolean; as?: keyof JSX.IntrinsicElements | React.ComponentType; }>; export declare const TheVoice: ({ id, className, children, isInverted, as }: TheVoiceProps) => JSX.Element;