export declare const SUPPORTED_ARX_FORMATS: readonly ["dlf", "fts", "llf", "ftl", "tea", "amb"];
export declare const SUPPORTED_DATA_FORMATS: readonly ["json", "yaml", "yml"];
export declare const SUPPORTED_FORMATS: readonly ["dlf", "fts", "llf", "ftl", "tea", "amb", "json", "yaml", "yml"];
export type SupportedArxFormat = (typeof SUPPORTED_ARX_FORMATS)[number];
export type SupportedDataFormat = (typeof SUPPORTED_DATA_FORMATS)[number];
export type SupportedFormat = (typeof SUPPORTED_FORMATS)[number];
