1 | import { ExpoConfig, Hook, HookArguments, HookType } from '@expo/config';
|
2 | export declare type LoadedHook = Hook & {
|
3 | _fn: (input: HookArguments) => any;
|
4 | };
|
5 | export declare function prepareHooks(hooks: ExpoConfig['hooks'], hookType: HookType, projectRoot: string): LoadedHook[];
|
6 | export declare function runHook(hook: LoadedHook, hookOptions: Omit<HookArguments, 'config'>): Promise<void>;
|