import { AllowedComponentProps, VNodeProps } from '../common' declare interface InformationProps { title: string subtitle?: string description?: string } declare interface _Information { new(): { $props: AllowedComponentProps & VNodeProps & InformationProps } } export declare const Information: _Information export default Information export type { InformationProps }