import { CustomFieldType } from '@atlassian/forge-graphql-types'; export declare const missingKeyErrorMessage: (missingKeys: Array) => string; export declare const missingNestedKeyErrorMessage: (missingKeys: Array, topLevelProperty: string) => string; export declare function invalidKeyErrorMessage(propertyName: string, validProperties?: string[]): string; export declare const invalidCharactersErrorMessage: (key: string) => string; export declare const maxValueLengthErrorMessage: (key: string, length: number) => string; export declare const invalidValueTypeErrorMessage: (key: string, expectedType: string) => string; export declare const invalidFieldTypeErrorMessage: (propertyName: string, validTypes: string[]) => string; export declare const invalidFieldValueErrorMessage: (key: string, validValue: string | number) => string; export declare const invalidOptionIdTypeErrorMessage: (id: string, expectedType: string) => string; export declare const invalidDisplayValueErrorMessage: (value: string, expectedType: string) => string; export declare const invalidLinkTypeErrorMessage: (type: string, validTypes: string[]) => string; export declare const invalidCustomFieldTypeErrorMessage: (type: string, validTypes: string[]) => string; export declare const multipleSameCustomFieldsError: (customFieldName: string) => string; export declare const invalidCustomFieldValueType: (value: any, requiredValueType: string, customFieldType: CustomFieldType) => string; export declare const missingSpecificCustomFieldInComponent: (customFieldName: string) => string; export declare const invalidCustomFieldTypeForExistingComponent: (customFieldName: string, requiredCustomFieldType: string) => string; export declare const DETACH_ERROR_MESSAGE = "Unexpected internal server error. You may need to relink the component and try deleting it again"; export declare const INVALID_RELATIONSHIP_ERROR_MESSAGE = "The Atlassian resource identifier (ARI) of the component at the start node of this relationship is invalid. Try again with a valid ARI"; export declare const DEFAULT_SERVER_ERROR_MESSAGE = "Unexpected internal server error. Try again"; export declare const INVALID_YAML_ERROR = "Invalid YAML format. Try again with a valid YAML file"; export declare const UNKNOWN_EXTERNAL_ALIAS_ERROR_MESSAGE = "We couldn\u2019t find the external alias. Check for typos and try again"; export declare const MISSING_CUSTOM_FIELDS_IN_COMPONENT = "Custom fields defined in yaml need to already exist on the component"; export declare const labelHasWhitespaceErrorMessage: (label: string) => string; export declare const labelHasUppercaseErrorMessage: (label: string) => string; export declare const componentNotFound: (id: string | null) => string;