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