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