import type { Blockchain } from './Blockchain';
export type CreateBurningEndpointClass = {
    address?: string | null;
    validuntil?: string;
    blockchain?: Blockchain;
};
