import * as React from 'react';
export interface IWebPartLinksProps {
    parentListURL: string;
    childListURL?: string;
    parentListName: string;
    childListName?: string;
    repoObject: any;
    showRepoLinks: boolean;
}
export interface IWebPartLinksState {
    selectedChoice: string;
    lastChoice: string;
}
export default class WebPartLinks extends React.Component<IWebPartLinksProps, IWebPartLinksState> {
    private parentListURL;
    private parentListName;
    private childListURL;
    private childListName;
    /***
     *          .o88b.  .d88b.  d8b   db .d8888. d888888b d8888b. db    db  .o88b. d888888b  .d88b.  d8888b.
     *         d8P  Y8 .8P  Y8. 888o  88 88'  YP `~~88~~' 88  `8D 88    88 d8P  Y8 `~~88~~' .8P  Y8. 88  `8D
     *         8P      88    88 88V8o 88 `8bo.      88    88oobY' 88    88 8P         88    88    88 88oobY'
     *         8b      88    88 88 V8o88   `Y8b.    88    88`8b   88    88 8b         88    88    88 88`8b
     *         Y8b  d8 `8b  d8' 88  V888 db   8D    88    88 `88. 88b  d88 Y8b  d8    88    `8b  d8' 88 `88.
     *          `Y88P'  `Y88P'  VP   V8P `8888Y'    YP    88   YD ~Y8888P'  `Y88P'    YP     `Y88P'  88   YD
     *
     *
     */
    constructor(props: IWebPartLinksProps);
    /***
   *         d8888b. d888888b d8888b.      db    db d8888b. d8888b.  .d8b.  d888888b d88888b
   *         88  `8D   `88'   88  `8D      88    88 88  `8D 88  `8D d8' `8b `~~88~~' 88'
   *         88   88    88    88   88      88    88 88oodD' 88   88 88ooo88    88    88ooooo
   *         88   88    88    88   88      88    88 88~~~   88   88 88~~~88    88    88~~~~~
   *         88  .8D   .88.   88  .8D      88b  d88 88      88  .8D 88   88    88    88.
   *         Y8888D' Y888888P Y8888D'      ~Y8888P' 88      Y8888D' YP   YP    YP    Y88888P
   *
   *
   */
    /***
     *         d8888b. d88888b d8b   db d8888b. d88888b d8888b.
     *         88  `8D 88'     888o  88 88  `8D 88'     88  `8D
     *         88oobY' 88ooooo 88V8o 88 88   88 88ooooo 88oobY'
     *         88`8b   88~~~~~ 88 V8o88 88   88 88~~~~~ 88`8b
     *         88 `88. 88.     88  V888 88  .8D 88.     88 `88.
     *         88   YD Y88888P VP   V8P Y8888D' Y88888P 88   YD
     *
     *
     */
    render(): React.ReactElement<IWebPartLinksProps>;
}
//# sourceMappingURL=WebPartLinks.d.ts.map