interface TableColumn { name: string; type: string; } /** * Parse a Postgres RETURNS TABLE() definition string to extract column name and type pairs */ export declare function parsePostgresTableDefinition(tableDefinition: string): TableColumn[]; export {};