import type { Snippet } from 'svelte';
interface Props {
    header: any;
    headerComponents: any;
    children: Snippet<[any]>;
}
declare const AppHeader: import("svelte").Component<Props, {}, "">;
type AppHeader = ReturnType<typeof AppHeader>;
export default AppHeader;
