import type { Snippet } from 'svelte';
import type { ClassValue } from 'svelte/elements';
interface Props {
    class?: ClassValue;
    children: Snippet;
}
declare const DrawerBody: import("svelte").Component<Props, {}, "">;
type DrawerBody = ReturnType<typeof DrawerBody>;
export default DrawerBody;
