import type { OffsetAndSize } from "./writePartitions";
export declare enum PartitionType {
    EfiSystem = "C12A7328-F81F-11D2-BA4B-00A0C93EC93B",
    BiosBoot = "21686148-6449-6E6F-744E-656564454649",
    LinuxData = "0FC63DAF-8483-4772-8E79-3D69D8477DE4"
}
export interface Partition {
    size: number;
    name: string;
    type: PartitionType;
    guid?: string;
}
export interface PartedOptions {
    outputFile: string;
    guid?: string;
    partitions: Partition[];
}
export declare const parted: (config: PartedOptions) => Promise<OffsetAndSize[]>;
