import { Plugin } from '../types';
export interface TypescriptDeclarationsPluginOptions {
    additionalArgs?: string[];
    tscPath?: string;
    tsConfigPath?: string;
    allowFailure?: boolean;
}
export declare function typescriptDeclarationsPlugin(options: TypescriptDeclarationsPluginOptions): Plugin;
