// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IProps { highlightColor: string; myLinks: IMyLink[]; title?: string; marginTop?: number; displayType?: "Standard" | "Condensed" | "Tiles"; linkTextColor?: string; linkIconColor?: string; linkBackgroundColor?: string; linkBorderRadius?: string; linkBorderColor?: string; linkBorderStyle?: string; defaultLinkIcon?: string; linkDropShadow?: boolean; collapseCommandBarItems?: boolean; hasDarkBackground?: boolean; fontSlots?: IFontSlots; onChange: (myLinks: IMyLink[]) => void; } export class IAMyLinks extends React.Component { constructor(props: IProps); componentWillReceiveProps(props: IProps): void; render(): JSX.Element; } export interface IMyLink { title?: string; icon?: string; description?: string; url?: string; } export interface IFontSlots { title: { fontFamily: string; }; heading: { fontFamily: string; }; body: { fontFamily: string; }; label: { fontFamily: string; }; }