import type { Snippet } from "svelte";
export interface Props {
    children: Snippet<[]>;
    globals: {
        brandingName: string;
    };
}
declare const WithLayout: import("svelte").Component<Props, {}, "">;
type WithLayout = ReturnType<typeof WithLayout>;
export default WithLayout;
