import HdgElement from "@hdgd/core"; export interface Props { avatar?: boolean; avatarshape?: "round" | "square"; titel?: boolean; row: number; rowwidths?: string; hide?: boolean; } declare class Skeleton extends HdgElement { row: number; rowwidths: string; avatar: boolean; avatarshape: string; hide: boolean; titel: boolean; componentDidMount(): void; getRowWidth: (index: number) => string; render(): any; } export default Skeleton;