import * as React from "react"; /** * Represents the generation stage of a message * @property {string} className - Optional className for custom styling * @property {boolean} showLabel - Whether to show the label */ export interface GenerationStageProps extends React.HTMLAttributes { showLabel?: boolean; } export declare function MessageGenerationStage({ className, showLabel, ...props }: GenerationStageProps): React.JSX.Element | null; //# sourceMappingURL=message-generation-stage.d.ts.map