/** Sets the library's base path to the specified directory. */
export declare function setBasePath(path: string): void;
/** Sets the library's default base path (ignoring config) to the specified directory. */
export declare function setDefaultBasePath(path: string): void;
/** Sets the library's assets directory path to the specified directory. */
export declare function setAssetsPath(path: string): void;
/**
* Gets the library's base path.
*
* By default, this script will look for a script ending in design-system.js or design-system-autoloader.js and set the base path
* to the directory that contains that file. To override this behavior, you can add the data-design-system attribute to any
* script on the page (it probably makes the most sense to attach it to the design-system script, but it could also be on a
* bundle). The value can be a local folder or it can point to a CORS-enabled endpoint such as a CDN.
*
*
*
* Alternatively, you can set the base path manually using the exported setBasePath() function.
*
* @param subpath - An optional path to append to the base path.
*/
export declare function getBasePath(subpath?: string): string;
/**
* Gets the library's assets directory path.
*
* The assets path is used to load assets such as icons and images, so it needs to be set for components to work properly.
* By default, the assets path is 'assets' (at the root of the project). To override this behavior, you can add the data-design-system-assets attribute to any
* script on the page (it probably makes the most sense to attach it to the design-system script, but it could also be on a
* bundle). The value can be a local folder or it can point to a CORS-enabled endpoint such as a CDN.
*
*
*
* Alternatively, you can set the base path manually using the exported setAssetsPath() function.
*
* @param subpath - An optional path to append to the base path.
*/
export declare function getAssetsPath(subpath?: string): string;
export declare function getDefaultBasePath(subpath?: string): string;