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