/** * AppBar Component - Lynx 版 MUI AppBar * 应用栏组件 */ import './AppBar.css'; export type AppBarPosition = 'fixed' | 'absolute' | 'sticky' | 'static' | 'relative'; export type AppBarColor = 'default' | 'inherit' | 'primary' | 'secondary' | 'transparent'; export interface AppBarProps { /** 定位方式 */ position?: AppBarPosition; /** 颜色 */ color?: AppBarColor; /** 阴影层级 */ elevation?: number; /** 是否启用颜色反转 */ enableColorOnDark?: boolean; /** 子元素 */ children?: any; /** 自定义类名 */ className?: string; /** 内联样式 */ style?: Record; /** sx 属性 */ sx?: Record; } export declare function AppBar({ position, color, elevation, children, className, style, sx, ...props }: AppBarProps): JSX.Element; export default AppBar; //# sourceMappingURL=index.d.ts.map