import type { NumericLike, PhpNullish } from '../_helpers/_phpTypes.ts';
type IntvalInput = NumericLike | boolean | PhpNullish;
export declare function intval(mixedVar: IntvalInput, base?: number): number;
export {};
