export declare const ListTitle: ({ avatar, title, isActive, }: {
    avatar: string;
    title: string;
    isActive: boolean | undefined;
}) => JSX.Element;
