import * as React from "react"; export interface ContainerProps { children: React.ReactNode; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Allows custom styling */ className?: string; } declare const Container: ({ children, "data-cy": dataCy, className }: ContainerProps) => React.JSX.Element; export default Container;