import { ComponentPropsWithoutRef, ReactNode } from 'react'; declare type TipsAttributes = ComponentPropsWithoutRef<'div'>; export declare type ListItemProps = { items?: ReactNode[]; listStyleType?: string; }; export declare type ActionTextProps = { href?: string; text?: string; onClick?: () => void; }; export interface TipsProps extends Omit { /** * To set action text at the end of the text * @default {} */ actionText?: ActionTextProps; /** * To pass custom className to create custom style */ className?: string; /** * To set the description content of this Tips * @default '' */ description?: ReactNode; /** * To add additional info in list format * @default {} */ list?: ListItemProps; /** * To specify custom margin on Tips */ margin?: string; /** * To specify title * @default '' */ title?: string; } export {};