import { IPendingComponent } from './IPendingComponent';
/**
 * Interface of a Storyblok component.
 *
 * @export
 * @interface IComponent
 */
export interface IComponent extends IPendingComponent {
    readonly created_at?: string;
    readonly id?: number;
}
//# sourceMappingURL=IComponent.d.ts.map