interface DeprecationNoticeProps { deprecated?: boolean; description?: string; } export declare function createDeprecationNotice({ deprecated, description, }: DeprecationNoticeProps): string; export {};