import { CardProps } from '../Card'; import { LinkProps } from '../Link'; interface LinksOfTheDayProps { /** * The card heading. * @defaultValue `Devfolio's Favorite Links Of The Day` */ heading?: CardProps['heading']; /** * A list of links to be featured. * @defaultValue `[]` */ links: LinkProps[]; } /** * An editorial block to feature Devfolio's favorite links of the day. * * {@link https://www.figma.com/file/G3rNzV4jvuzjpqUn1pMlxd/Source-DS?node-id=3653%3A1743 Figma} */ declare const LinksOfTheDay: ({ heading, links }: LinksOfTheDayProps) => JSX.Element; export { LinksOfTheDay }; export type { LinksOfTheDayProps };