interface StockLiftClient {
    uuid: string;
    name?: string;
    email?: string;
    age?: number | string;
    country?: string;
    state?: string;
}
interface StockLiftConfig {
    accessToken: string;
    companyName: string;
    client: StockLiftClient;
}
export { StockLiftConfig, StockLiftClient };
