/** @packageDocumentation * @module Utilities */ import * as React from "react"; import { Omit } from "./typeUtils"; /** Props used by components that expect class name to be passed in. * @public */ export interface ClassNameProps { /** Custom CSS class name */ className?: string; } /** Common props used by components. * @public */ export interface CommonProps extends ClassNameProps { /** Custom CSS style properties */ style?: React.CSSProperties; } /** Common properties using a div element. * @public */ export interface CommonDivProps extends React.AllHTMLAttributes, CommonProps { } /** Props used by components that do not expect children to be passed in. * @public */ export interface NoChildrenProps { children?: undefined; } /** Omit children property from T. * @public */ export declare type OmitChildrenProp = Omit; //# sourceMappingURL=Props.d.ts.map