import { Visage, Theme, StyleGenerator } from './types'; export interface UseDesignSystemHookOptions { is?: number; styleGenerator: StyleGenerator; theme: TTheme; } /** * Use design system works as root hook that can be used to create own DesignSystem * * If no options are provided then it works as useContext that connects to Visage context */ export declare function useDesignSystem(options?: UseDesignSystemHookOptions): Visage; //# sourceMappingURL=useDesignSystem.d.ts.map