// This file was generated by a tool. Modifying it will produce unexpected behavior /** * @public */ export interface IStoresStrings { /** * {Locked}An error to show when there are too many component for one id. Used when requesting component by id without a specific version. {0} is the component id. */ 'tooManyComponentsError': string; /** * {Locked}A log message to show when a component is going to be deleted from the component store. {0} is the component id, {1} is the component version. */ 'deleteComponentLog': string; /** * {Locked}An error to show when a component for the specified id could not be found. Used when requesting component by id without a specific version. {0} is the component id. */ 'noComponentFoundError': string; /** * {Locked}An error to show when the manifest could not be found. Shows only the id, to use when version is not available. {0} is the component id. */ 'manifestNotFoundByIdError': string; /** * {Locked}An error to show when there are too many manifests for one id. Used when requesting manifest by id without a specific version. {0} is the number of manifests found, {1} is a comma-separated list of the manifest versions, {2} is the component id. */ 'tooManyManifestsError': string; /** * {Locked}An error to show when there are too many compatible versions for one id and version. Used when requesting manifest by id and version. Only one compatible version should be found. {0} is the number of manifests found, {1} is a comma-separated list of the found versions, {2} is the component id, {3} is the component version. */ 'tooManyCompatibleVersionsError': string; } /** * @public */ declare const strings: IStoresStrings; export default strings;