import { ConfigResult } from './StatsigHooks'; /** * A synchronous hook to check the value of a Dynamic Config. To ensure correctness, wait for SDK initialization before * calling. * @param configName - the name of the DynamicConfig to check * @param ignoreOverrides - flag to ignore overrides * @returns a ConfigResult indicating the DynamicConfig value, and the loading state of the SDK */ export default function (configName: string, ignoreOverrides?: boolean): ConfigResult;