import 'server-only'; import Model, { ModelError } from './model'; import { HestiaContentChunkData } from './content-chunk.types'; export * from './content-chunk.types'; export default class ContentChunk extends Model { static findOne({ name, }: { name: string; }): Promise<{ result: ContentChunk | null; errors: ModelError[] | null; }>; get id(): number | null; get name(): string | null; get title(): string | null; get content(): string | null; get image(): string | null; get contentType(): string | null; get data(): any; get url(): string | null; } //# sourceMappingURL=content-chunk.d.ts.map