import type { FunctionalComponent, Slot } from "vue";
import type { BloggerInfoSlotData } from "@theme-hope/typings/slots";
declare const TimelinePage: FunctionalComponent<Record<never, never>, [
], {
    articlesBefore?: Slot;
    articlesAfter?: Slot;
    bloggerInfo?: Slot<BloggerInfoSlotData>;
    infoBefore?: Slot;
    infoAfter?: Slot;
}>;
export default TimelinePage;
