/** * Register a list of DS web components so that they can be used. Should be done * just once in your app, at init/bootstrap time. */ export declare function register(...Components: any[]): void; /** * If for some reason you have a tag name conflict between a DS web component and * another component in your app, you can use this to override the "sps" namespace * for the DS web component(s). You pass in the new namespace, and it returns a customized * `register()` function that you can pass DS web components to. For example, you could * use this to make `` become `` instead. */ export declare function namespaceOverrideRegistrar(overrideNamespace: string): (...Components: any[]) => void;