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