type $$ComponentProps = {
    clearable: boolean;
    chosenDate: boolean;
    clear: () => void;
    cancel: () => void;
    ok: () => void;
};
declare const Actions: import("svelte").Component<$$ComponentProps, {}, "">;
type Actions = ReturnType<typeof Actions>;
export default Actions;
