export declare const NEXT_ACTION: { readonly CHECK_TOKEN: "Check the token is valid or login to get a new token."; readonly CHECK_ADMIN_TOKEN: "Check the admin token is valid or login as admin to get a new token."; readonly CHECK_API_KEY: "Check the API key is valid or generate a new API key."; readonly CHECK_UNIQUE_FIELD: (field: string) => string; readonly CHECK_TABLE_EXISTS: "The resource you are trying to access does not exist. Please check the table with get metadata tool and try again."; readonly FILL_REQUIRED_FIELD: (field: string) => string; readonly CHECK_REFERENCE_EXISTS: "The referenced record does not exist. Please check the reference with get metadata tool and try again."; readonly CHECK_COLUMN_EXISTS: "Check the column name spelling and verify it exists in the table using GET /api/database/tables/{table}/schema"; readonly CHECK_UNIQUE_CONSTRAINT: "Ensure the referenced column has a unique constraint or is a primary key"; readonly CHECK_DATATYPE_MATCH: "Ensure the foreign key column and the referenced column have the same data type."; readonly REMOVE_DUPLICATE_COLUMN: (column: string) => string; readonly CHECK_RLS_POLICY: "A row-level security policy denied this operation. Verify the calling user owns the row (uploaded_by / user_id matches the JWT sub), or that an appropriate INSERT/UPDATE/DELETE policy exists for this role."; readonly ENABLE_COMPUTE: "Compute services are not enabled. Self-hosted: set FLY_API_TOKEN and FLY_ORG in your .env, then restart. Cloud: contact your project admin to enable compute."; readonly CHECK_COMPUTE_SERVICE_EXISTS: "The compute service was not found. Run `compute list` to see available services."; readonly CHECK_DOCKER_IMAGE: "Check the Docker image URL is valid and accessible. Ensure the image exists in the registry."; readonly CHECK_FLY_CAPACITY: "Compute service deployment failed. Check the Fly.io region has capacity, or try a different region."; readonly RETRY_COMPUTE_OPERATION: "The operation failed due to a transient error. Wait a moment and try again."; }; export type NextActionKey = keyof typeof NEXT_ACTION; //# sourceMappingURL=error-constants.d.ts.map