/** * adds the character 0 at the beginning of a workd * * @remarks * It takes 2 arguments. * * padzero(, ) * * - **** - number of character the word will have * - **** 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; }