import React from 'react'; export interface RequestIdProps { /** * Request ID value. * @external */ value: string; /** * Appearance of the component. * @external */ appearance?: 'standard' | 'light'; /** * Locale to use for translations. * @external */ locale: string; /** * Data hook for testing purposes * @external */ dataHook?: string; } export declare const RequestId: (props: RequestIdProps) => React.JSX.Element; //# sourceMappingURL=RequestId.d.ts.map