import { PayStellarUri } from './pay-stellar-uri'; import { TransactionStellarUri } from './transaction-stellar-uri'; /** * Parses a SEP-0007 style URI string and returns a TransactionStellarUri or PayStellarUri, depending on the type. * * @param uri The URI string to parse. * * @throws Throws an error if the uri is not a valid SEP-0007 style URI. */ export declare function parseStellarUri(uri: string): TransactionStellarUri | PayStellarUri; /** * Returns true if the given URI is a SEP-0007 style URI, false otherwise. * Currently this only checks whether it starts with 'web+stellar:' and is a valid type. * * @param uri The URI string to check. */ export declare function isStellarUri(uri: string): boolean;