import * as React from 'react'; import { THEME_ID, Theme } from '../../Identity'; type StyledAppContainerProps = { themeId: THEME_ID; theme?: never; } | { theme: Theme; themeId?: never; }; type BackgroundColorProps = { backgroundColor?: string; }; export type StyledAppProps = React.HTMLProps & StyledAppContainerProps & BackgroundColorProps; export declare const StyledApp: React.FC; export {}; //# sourceMappingURL=StyledApp.d.ts.map