import { ConstrutoInterface } from '../../interfaces/construtos/construto-interface';
import { Tupla } from '../tupla';
export declare class Quarteto extends Tupla {
    primeiro: ConstrutoInterface;
    segundo: ConstrutoInterface;
    terceiro: ConstrutoInterface;
    quarto: ConstrutoInterface;
    constructor(primeiro: ConstrutoInterface, segundo: ConstrutoInterface, terceiro: ConstrutoInterface, quarto: ConstrutoInterface);
    paraTexto(): string;
    paraTextoSaida(): string;
}
//# sourceMappingURL=quarteto.d.ts.map