import { SqlService, StringSearchDto } from '@servicelabsco/nestjs-utility-services'; import { GstStateEntity } from '../entities/gst.state.entity'; export declare class GstStateController { protected readonly sqlService: SqlService; constructor(sqlService: SqlService); find(body: StringSearchDto): Promise; getByState(gst_state_id: string): Promise; getByIdentifier(identifier: string): Promise; }