export interface OperationReferenceMetadata { /** * Reference value returned by the backend. Usually `operationId`, `saleId`, * request id, or any support-traceable identifier. */ value: string; /** Visible label before the value. Defaults to `Codigo de operacion`. */ label?: string; /** Text shown briefly after copying. Defaults to `Copiado`. */ copiedLabel?: string; /** Accessible label for the copy action. */ copyAriaLabel?: string; /** Horizontal alignment. Defaults to `center`. */ align?: 'start' | 'center' | 'end'; }