import type { DrawerBackdropBaseProps } from '@ark-ui/svelte/drawer';
import type { ClassValue } from 'svelte/elements';
interface Props extends DrawerBackdropBaseProps {
    class?: ClassValue;
}
declare const DrawerBackdrop: import("svelte").Component<Props, {}, "">;
type DrawerBackdrop = ReturnType<typeof DrawerBackdrop>;
export default DrawerBackdrop;
