/**
 * ./src/components/partitions.tsx
 * penguins-eggs v.10.0.0 / ecmascript 2020
 * author: Piero Proietti
 * email: piero.proietti@gmail.com
 * license: MIT
 */
import React from 'react';
import { SwapChoice } from '../classes/krill_enums.js';
type partitionsProps = {
    installationDevice?: string;
    installationMode?: string;
    filesystemType?: string;
    userSwapChoice?: SwapChoice;
    replacedPartition?: string;
};
export default function Partitions({ installationDevice, installationMode, filesystemType, userSwapChoice, replacedPartition }: partitionsProps): React.JSX.Element;
export {};
