import type { Refkey } from "@alloy-js/core"; import type * as ts from "@alloy-js/typescript"; import type { ModelProperty } from "@typespec/compiler"; import type { HttpProperty } from "@typespec/http"; import type * as cl from "@typespec/http-client"; export declare function buildClientParameters(client: cl.Client, suffixRefkey: Refkey): ts.ParameterDescriptor[]; /** * Checks if a parameter has a default value. Only honors default values for content-type. * @param property Property to check * @returns whether the property has a default value */ export declare function hasDefaultValue(property: HttpProperty): boolean; export declare function getDefaultValue(property: ModelProperty): string | number | boolean | undefined; export declare function getDefaultValue(property: HttpProperty): string | number | boolean | undefined; //# sourceMappingURL=parameters.d.ts.map