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