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