import type { HTMLAttributes } from 'svelte/elements';
type Props = HTMLAttributes<HTMLDivElement> & {
    grow?: boolean;
};
declare const AppShellSection: import("svelte").Component<Props, {}, "">;
type AppShellSection = ReturnType<typeof AppShellSection>;
export default AppShellSection;
