import { QueueType } from './types/Types' declare class Stock { private readonly stockTicker get ticker (): string; set ticker (ticker: string); constructor (ticker: string); getValue (): Promise; getBuyPrice (): Promise; getQueueInfo (type: QueueType): Promise; getOwnerData (): Promise; } export default Stock