wix-style-react
Version:
wix-style-react
20 lines (16 loc) • 419 B
TypeScript
import * as React from 'react';
import Center from './Center';
import End from './End';
import Start from './Start';
export interface PageFooterProps {
children?: React.ReactNode;
dataHook?: string;
className?: string;
divider?: boolean;
}
declare const PageFooter: React.FunctionComponent<PageFooterProps> & {
Start: typeof Start;
Center: typeof Center;
End: typeof End;
};
export default PageFooter;