import type { ElProps, FooterProps } from '..'; export declare const THEME_NAMES: readonly ["dark", "light"]; export type Themes = typeof THEME_NAMES[number]; export interface AppProps extends Partial { theme?: Themes; } export interface AppHeaderProps extends Partial { theme?: Themes; } export interface AppFooterProps extends Partial { theme?: Themes; } export interface AppBodyProps extends Partial { theme?: Themes; }