export declare class FindAllStateDto {
    limit?: number;
    skip?: number;
    sortBy?: string;
    sortOrder?: "ASC" | "DESC";
    search?: string;
    country_id?: string;
}
