export interface Import { partial?: string[]; isModule?: boolean; } export declare type Imports = Record; export interface SerializedModel { imports?: Imports; schema?: string; graphql?: boolean; columns?: Record; name?: string; primaryKeys?: string[]; indexes?: Superluminal.Indexes; } declare const handleImports: (model: Superluminal.Model, graphql?: boolean | undefined) => Imports; export default handleImports;