import { Request, Response, NextFunction } from 'express';
/**
 * Submit a new quote request
 * POST /api/quotes
 */
export declare const submitQuote: (req: Request, res: Response, next: NextFunction) => Promise<void>;
/**
 * Get quote by ID (for customer lookup - optional)
 * GET /api/quotes/:id
 */
export declare const getQuoteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
//# sourceMappingURL=quote.controller.d.ts.map