/** * This defines the language keys for members of `LayoutField` that must be translated * prior to being sent in a Gen2 print operation. Any `LayoutField` absent from this list * is not a translated caption field. */ export declare const LayoutFieldTranslations: Record; /** * Details about whether the layout field is an auto-value or not. * An auto-value is a field whose value can be auto-generated by the client or printing engine. */ interface AutoValueInfo { /** * True if a field is an auto-value, false otherwise. */ isAutoValue: boolean; /** * True if the auot-value must be set by the client, false if the printing engine will populate it. */ isClientValue: boolean; } /** * Gets information about whether the specified layout field is an auto-value or not. * @param layoutFieldName The name of a layout field. * @returns Details about whether the layout field is an auto-value or not. */ export declare function getAutoValueInfo(layoutFieldName: string): AutoValueInfo; export {};