import { FC, PropsWithChildren } from "react"; import { type NetworkImageProps } from "../icon/networkImage"; export interface ListTileProps { className?: string; tailing?: React.ReactNode; avatar?: string | React.ReactNode | NetworkImageProps; title?: string | React.ReactNode; subtitle?: string | React.ReactNode; onClick?: () => void; disabled?: boolean; } export declare const ListTile: FC>; //# sourceMappingURL=listTile.d.ts.map