import { ComputedRef } from 'vue';

export interface AdditionalPropertiesDefaultTranslation {
    key: AdditionalPropertiesTranslationEnum;
    default: (variable?: string | null) => string;
}
export declare enum AdditionalPropertiesTranslationEnum {
    addTooltip = "addTooltip",
    addAriaLabel = "addAriaLabel",
    removeTooltip = "removeTooltip",
    removeAriaLabel = "removeAriaLabel",
    propertyNameLabel = "propertyNameLabel",
    propertyNameInvalid = "propertyNameInvalid",
    propertyAlreadyDefined = "propertyAlreadyDefined"
}
export type AdditionalPropertiesTranslations = {
    [key in AdditionalPropertiesTranslationEnum]?: string | ComputedRef<string | null>;
};
export declare const additionalPropertiesDefaultTranslations: AdditionalPropertiesDefaultTranslation[];
