import React from 'react'; interface Props { hvit?: boolean; fullbredde?: boolean; klasse?: string[] | string; tittel?: string; vedKlikk: () => Promise | void | string; venstrestilt?: boolean; children?: React.ReactNode; disabled?: boolean; } declare function Knapp(props: Props): React.JSX.Element; export { Knapp };