import type { Config } from '../types/index.js'; import type { QueryTheme, Theme } from './types/index.js'; /** * Method to receive a styleguide theme. * * @param code - Type key code of a styleguide theme. * @param query - Query object with search terms to apply. * @param config - Custom configurations to send to the client * instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const getTheme: (code: string, query?: QueryTheme, config?: Config) => Promise; export default getTheme;