/// <reference types="react" />
export interface IComponentStatusProps {
    /**
     * Components should be fully usable with the keyboard. For this badge to pass, all of the functionalities of
     * a component needs to be accessible via the keyboard.
     */
    keyboardAccessibilitySupport: ChecklistStatus;
    /**
     * Components should be appropriately marked with ARIA attributes so users with assistive technologies can
     * interact with them. For this badge to pass, a component needs to be marked with ARIA attributes to describe
     * its behavior for assistive technologies (e.g., screen readers). A component can use ARIA roles, states
     * and properties to inform users of its behavior.
     */
    markupSupport: ChecklistStatus;
    /**
     * Components should display correctly in high contrast mode. For this badge to pass, set your operating
     * system to use high contrast and then ensure that the components render correctly.
     */
    highContrastSupport: ChecklistStatus;
    /**
     * For localization, components should display correctly in right to left layouts. For this badge to pass,
     * ensure RTL (right-to-left) layouts render properly in the sample website by enabling it in the settings
     * (located in the top right corner for LTR layout).
     */
    rtlSupport: ChecklistStatus;
    /**
     * To avoid regressions, make sure components are throughly unit-tested. For this badge to be marked "good",
     * write unit tests that cover all edge cases and scenarios.
     */
    testCoverage: ChecklistStatus;
}
export declare enum ChecklistStatus {
    unknown = "Unknown",
    notApplicable = "Not applicable",
    pass = "Pass",
    fail = "Fail",
    none = "Missing tests",
    poor = "Poor",
    fair = "Fair",
    good = "Good",
}
export interface IDocPageProps {
    /** Title that goes into the header */
    title: string;
    /** Name of the component being documented */
    componentName: string;
    /** URL of the checked in component, should be somewhere on github.com */
    componentUrl: string;
    /** Status of the component; e.g. keyboard accessible */
    componentStatus?: IComponentStatusProps;
    /** Knobs that applies to all the examples */
    exampleKnobs?: JSX.Element;
    /** Array of examples, displayed in the order defined */
    examples?: {
        /** Title of the example */
        title: string;
        /** Raw source code of the example */
        code: string;
        /** Working example of the example */
        view: JSX.Element;
        isScrollable?: boolean;
        /** JS String for codepen of the example */
        codepenJS?: string;
    }[];
    /** Array of implementation examples, displayed in the order defined */
    implementationExamples?: {
        /** Title of the example */
        title: string;
        /** Raw source code of the example */
        code: string;
        /** Working example of the example */
        view: JSX.Element;
    }[];
    /** Properties table(s) as markdown string */
    propertiesTablesSources?: string[];
    /** Overview of the component as markdown string */
    overview?: string;
    /** DO's blurb as markdown string */
    dos?: string;
    /** DON'Ts blurb as markdown string */
    donts?: string;
    /** Best practice as markdown string */
    bestPractices?: string;
    /** Feedback section includes link to new issue page and displays Github issues */
    isFeedbackVisible?: boolean;
    /** Passed through header visibility flag from the demo component page component */
    isHeaderVisible: boolean;
    /** Allows native props */
    allowNativeProps?: boolean | string;
    /** Native props root element */
    nativePropsElement?: string | string[];
    /** Related link */
    related?: JSX.Element;
    /** Pass through other sections for ComponentPage */
    otherSections?: {
        title: string;
        section: JSX.Element;
    }[];
}
