import type { AtomicStep } from "../../container";
export interface VeritytabVolume {
    name: string;
    metadataFile: string;
    device?: string;
    options?: string[];
}
export interface VeritytabOptions {
    replace?: boolean;
    volumes: VeritytabVolume[];
}
export declare const veritytab: (options: VeritytabOptions) => AtomicStep;
