/// import { Declaration } from "../core/DeclarationCollection.js"; /** * Properties for {@link DeclarationInfo} component. * @group Components */ export interface DeclarationInfoProps { /** * Additional styles to apply. */ className?: string; /** * True to format this declaration as a child of another declaration. */ child?: boolean; /** * The declaration to format. */ declaration: Declaration; /** * True to hide the icon. */ noIcon?: boolean; /** * Optional title to show in place of the declaration name. */ title?: string; } /** * Formats information about a declaration. * @group Components */ export declare function DeclarationInfo({ className, child, declaration, title, noIcon, }: DeclarationInfoProps): JSX.Element; //# sourceMappingURL=DeclarationInfo.d.ts.map