import { DocumentNode, GraphQLSchema } from 'graphql';
/**
 * @internal
 */
export declare function pickExportFromModule({ module, filepath }: {
    module: any;
    filepath: string;
}): Promise<GraphQLSchema | DocumentNode | null>;
/**
 * @internal
 */
export declare function pickExportFromModuleSync({ module, filepath }: {
    module: any;
    filepath: string;
}): GraphQLSchema | DocumentNode | null;
