import React from 'react';
import type { PropsWithChildren } from 'react';
declare function Guideline({ children, }: PropsWithChildren<Record<string, never>>): JSX.Element;
declare namespace Guideline {
    var Do: ({ children, }: React.PropsWithChildren<Record<string, never>>) => JSX.Element;
    var Dont: ({ children, }: React.PropsWithChildren<Record<string, never>>) => JSX.Element;
}
export default Guideline;
