export interface QuotesListFilters { search?: string | undefined; personId?: string | undefined; organizationId?: string | undefined; pipelineId?: string | undefined; stageId?: string | undefined; ownerId?: string | undefined; status?: string | undefined; limit?: number | undefined; offset?: number | undefined; } export interface PipelinesListFilters { entityType?: string | undefined; limit?: number | undefined; offset?: number | undefined; } export interface StagesListFilters { pipelineId?: string | undefined; limit?: number | undefined; offset?: number | undefined; } export interface QuoteVersionsListFilters { quoteId?: string | undefined; status?: string | undefined; limit?: number | undefined; offset?: number | undefined; } export declare const quotesQueryKeys: { readonly all: readonly ["voyant", "quotes"]; readonly quotes: () => readonly ["voyant", "quotes", "quotes"]; readonly quotesList: (filters: QuotesListFilters) => readonly ["voyant", "quotes", "quotes", "list", QuotesListFilters]; readonly quote: (id: string) => readonly ["voyant", "quotes", "quotes", "detail", string]; readonly pipelines: () => readonly ["voyant", "quotes", "pipelines"]; readonly pipelinesList: (filters: PipelinesListFilters) => readonly ["voyant", "quotes", "pipelines", "list", PipelinesListFilters]; readonly pipeline: (id: string) => readonly ["voyant", "quotes", "pipelines", "detail", string]; readonly stages: () => readonly ["voyant", "quotes", "stages"]; readonly stagesList: (filters: StagesListFilters) => readonly ["voyant", "quotes", "stages", "list", StagesListFilters]; readonly stage: (id: string) => readonly ["voyant", "quotes", "stages", "detail", string]; readonly quoteVersions: () => readonly ["voyant", "quotes", "quote-versions"]; readonly quoteVersionsList: (filters: QuoteVersionsListFilters) => readonly ["voyant", "quotes", "quote-versions", "list", QuoteVersionsListFilters]; readonly quoteVersion: (id: string) => readonly ["voyant", "quotes", "quote-versions", "detail", string]; readonly quoteVersionLines: (quoteVersionId: string) => readonly ["voyant", "quotes", "quote-versions", "detail", string, "lines"]; readonly quoteParticipants: (quoteId: string) => readonly ["voyant", "quotes", "quotes", "detail", string, "participants"]; readonly quoteProducts: (quoteId: string) => readonly ["voyant", "quotes", "quotes", "detail", string, "products"]; readonly quoteMedia: (quoteId: string) => readonly ["voyant", "quotes", "quotes", "detail", string, "media"]; };