import type { ActionReturn } from "svelte/action";
interface Attributes {
    "on:clickoutside"?: (e: CustomEvent<void>) => void;
}
type Callback = () => unknown;
export declare function clickOutsideAction(node: HTMLElement, callback?: Callback): ActionReturn<{}, Attributes>;
export {};
