import { type ChildrenProps } from "../../types/props"; import { type ThemeName } from "../../types/tokens"; import { type Feature } from "../FeatureProvider"; interface AppProviderOwnProps { /** * Name of the theme to use for the app. * @default 'light' */ themeName?: ThemeName; /** * List of features to enable for the app. * @default [] */ features?: Feature[]; /** * Window object to use for the app. * @default window */ window?: Window; } export interface AppProviderProps extends ChildrenProps, AppProviderOwnProps { } export {}; //# sourceMappingURL=AppProvider.types.d.ts.map