type ExpectedType = {}; /** * Check whether the object type is as expected. * * @example * * ```tsx * export function TestComponent({ * containerStyle, * }: { * containerStyle?: StyleProp | undefined; * }) { * const { getStyleSize } = useGetStyleProps(); * const size = getStyleSize(containerStyle); * const { checkType } = useCheckType(); * checkType(size.width, 'string'); * return ( * * {'I am a striking color block.'} * * ); * } * ``` */ export declare function useCheckType(params?: { enabled?: boolean; }): { checkType: (object: any, expectedType: ExpectedType, others?: { callerName?: string; objectName?: string; }) => void; }; export {}; //# sourceMappingURL=useCheckType.d.ts.map