/** * Represents the command configuration. */ export interface IFilterCommandConfig { /** * The locale code for which files should be passed through, * or undefined to pass through only base files. * Default is undefined. */ localeCode?: string; /** * True to rename the files that are passed through to their * base name, otherwise false. * Default is false. */ renameToBaseName?: boolean; } /** * Represents the command configuration. */ export declare class FilterCommandConfig { /** * Creates a new instance of the FilterCommandConfig type. * @param config The config object from which the instance should be created. */ constructor(config?: IFilterCommandConfig); /** * The locale code for which files should be passed through, * or undefined to pass through only base files. */ localeCode: string; /** * True to rename the files that are passed through to their * base name, otherwise false. */ renameToBaseName: boolean; }