import { Decorator } from "@storybook/react/*";
interface ActionPropUpdateOptions {
    directLink?: {
        [actionName: string]: string;
    };
    updateArgs?: {
        [actionName: string]: (...args: any) => {
            [propName: string]: any;
        } | undefined;
    };
}
export declare function ActionPropUpdate({ directLink, updateArgs, }: ActionPropUpdateOptions): Decorator;
export {};
