import { ValueKey } from "../key";
import type { Key } from "../key/types";
export declare namespace MetaInputParts {
    type Of<T extends string, V> = {
        [K in T]?: V;
    };
    type Full = Nested & Of<Key.Section, Nested>;
    export type Nested = Of<Key.Value, string>;
    export type Heading = Of<Key.Section, Nested>;
    export type Input = Full & Heading;
    export {};
}
export type InputMeta = MetaInputParts.Input | undefined | Iterable<readonly [ValueKey, string]>;
//# sourceMappingURL=dict-input.d.ts.map