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