import { ArrayType, HashbrownType, ObjectType, StringConstraintsInput, StringType } from './base'; import { CleanInterfaceShape } from '../utils/types'; /** * @public */ export declare function string(description: string, constraints?: StringConstraintsInput): StringType; /** * @public */ export declare function object>(description: string, shape: Shape): ObjectType>; /** * @public */ export declare function array(description: string, item: Item, constraints?: { minItems?: number; maxItems?: number; }): ArrayType; //# sourceMappingURL=streaming.d.ts.map