/**
 * Check if the given object is a loader. An object is considered a loader if it has
 * only one key, which is wrapped in square brackets.
 */
export declare function isLoader(prop: {
    [key: string]: object;
}): boolean;
