export default interface SendLocalListResponse {
    status: 'Accepted' | 'Failed' | 'HashError' | 'NotSupported' | 'VersionMismatch';
    hash?: string;
}
