interface CommonProps { primary?: any; items?: any; } interface MetaProps { title: String; description: String; } interface FieldsProps { [x: string]: Function; } export declare const variation: (zones: any) => { primary: FieldsProps; items: FieldsProps; id: any; }; export declare const shape: (obj: { [x: string]: any; __common?: CommonProps; __meta: MetaProps; }) => { title: String; description: String; variations: any[]; }; export {};