import Theme from './Theme'; /** * @return the Theme model associated with the given theme name * */ export declare function findByName(name: string): Promise<{ theme: Theme; plugin: string; }>; export default findByName;