import { ExampleType } from '@shopify/generate-docs'; type NonEmptyArray = [T, ...T[]]; type ExtensionExampleLanguage = 'js' | 'jsx'; /** * Returns all examples available, specified with a key for reference. */ export declare function getExamples(languages: NonEmptyArray): { [key: string]: ExampleType; }; /** * Returns a specific `Example` by name, as specified in `getExamples()`. * Specify whether you want to include both `js` and `jsx`examples or just one. */ export declare function getExample(name: string, languages?: NonEmptyArray): ExampleType; export {}; //# sourceMappingURL=helper.docs.d.ts.map