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