import { SvelteComponent } from "svelte";
type $$ComponentProps = {
    children: () => SvelteComponent;
    overSwipe?: boolean;
    onclick?: () => void;
    class?: string;
};
declare const SwipeoutAction: import("svelte").Component<$$ComponentProps, {}, "">;
type SwipeoutAction = ReturnType<typeof SwipeoutAction>;
export default SwipeoutAction;
