TableColExpander.d.ts 594 B

12345678
  1. /// <reference types="react" />
  2. declare const ColumnExpander: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<Omit<import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "headCell" | "noPadding"> & {
  3. headCell?: boolean | undefined;
  4. noPadding?: boolean | undefined;
  5. }, "ref"> & {
  6. ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
  7. }, never>> & string;
  8. export default ColumnExpander;