export type toFixedLengthStringUtilParams = {
    value: number;
    fixedDigits?: number;
};
export declare function toFixedLengthStringUtil({ value, fixedDigits }: toFixedLengthStringUtilParams): string;
