export declare type Args = { [fieldPath: string]: any; }; export declare type ArgTypes = { [fieldPath: string]: { control: string; defaultValue: any; options?: any; }; }; export declare type ModuleStory = { render: React.ComponentType; argTypes: ArgTypes; args: Args; };