/**
 * adds the character 0 at the beginning of a workd
 *
 * @remarks
 * It takes 2 arguments.
 *
 * padzero(<count\>, <word_or_number\>)
 *
 * - **<count\>** - number of character the word will have
 * - **<word_or_number\>** start of the word
 *
 * ## Usage
 *
 * - `padzero(4, 5)` - returns '0005'
 *
 */
import { BaseMethod } from './_Base';
export declare class PadzeroExpression extends BaseMethod {
    static required_arguments(): string[][];
    process_arguments(args: any[]): Promise<string>;
}
