import type { Provider } from "@smithy/types"; /** * @internal */ export type FromStaticConfig = T | (() => T) | Provider; /** * @internal */ export declare const fromStatic: (defaultValue: FromStaticConfig) => Provider;