import type { DesignSystemDefinition } from "./definition.js"; import type { DesignSystemComponentName, DesignSystemComponents } from "./types.js"; export interface DesignSystemContextValue { definition?: DesignSystemDefinition; legacyActionButton?: DesignSystemComponents["ActionButton"]; } export declare const DesignSystemContext: import("react").Context; export declare const LegacyButtonRenderContext: import("react").Context; export declare function useDesignSystem(): DesignSystemDefinition | undefined; export declare function useDesignSystemComponent(name: Name): DesignSystemComponents[Name] | undefined; //# sourceMappingURL=context.d.ts.map