export interface HelmOptions {
    name: string;
    chart: string;
    args?: Array<string>;
    values?: object;
}
declare const source: {
    import: (options: HelmOptions) => Promise<unknown[]>;
};
export default source;
