import React from 'react'; import { DecafMenuItem, UserProfileDropdownItem } from '../types'; import { CommandPaletteItem } from './CommandPalette'; export interface DecafLayoutProps { menu: DecafMenuItem[]; appName: string; children?: React.ReactNode; /** Resolved palette items, or `null` to disable the feature. */ commandPaletteItems?: CommandPaletteItem[] | null; /** Consumer-contributed items injected into the user profile dropdown. */ userProfileDropdownItems?: UserProfileDropdownItem[]; } export default function DecafLayout(props: DecafLayoutProps): React.JSX.Element; export declare function DecafLayoutBrand({ title }: { title: string; }): React.JSX.Element; export declare function DecafLayoutProgress({ isAnimating }: { isAnimating: boolean; }): React.JSX.Element; //# sourceMappingURL=Layout.d.ts.map