import { FunctionalComponent } from "../../stencil-public-runtime"; export declare const ErrorState: (errorMessage: string) => any; export declare const DetailSectionTitle: FunctionalComponent<{ sectionTitle: string; }>; export declare const DetailItem: ({ title, value, onClick, }: { title: string; value: string; onClick?: () => void; }) => any; export declare const EntityHeadInfoItem: ({ title, value, classes, }: { title: string; value: any; classes?: string; }) => any; export declare const EntityHeadInfo: ({ title, slot, badge }: { title: any; slot: any; badge: any; }, children: any) => any; export declare const CodeBlock: ({ metadata }: { metadata: {}; }) => any;